home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / sep91.zip / 9N09098A < prev    next >
Text File  |  1991-07-17  |  75b  |  9 lines

  1. int &f()
  2.     {
  3.     int i;
  4.     ...
  5.     return i;
  6.     }
  7. ...
  8. f() = 2;
  9.